sub

pure function sub(start: integer): text

Returns a substring of this text starting from the specified index.

Since

0.6.0

Parameters

start

The starting index of the substring.


pure function sub(start: integer, end: integer): text

Returns a substring of this text from the specified start index (inclusive) to the specified end index (exclusive).

Since

0.6.0

Parameters

start

The start index of the substring.

end

The end index of the substring.